projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ebcb16
)
test: let use gdbserver for all sandbox targets
author
Igor Opaniuk
<
[email protected]
>
Tue, 12 Feb 2019 14:18:14 +0000
(16:18 +0200)
committer
Tom Rini
<
[email protected]
>
Tue, 19 Feb 2019 13:55:43 +0000
(08:55 -0500)
Enable usage of gdbserver for all sandbox targets (sandbox,
sandbox_flattree etc.).
Signed-off-by: Igor Opaniuk <
[email protected]
>
Reviewed-by: Tom Rini <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
test/py/conftest.py
patch
|
blob
|
history
diff --git
a/test/py/conftest.py
b/test/py/conftest.py
index 5c658b8c4840fce1e8c0e143a29c22f7f6f2dbdf..e40cbf0ba12ab329afdc08413d71719cee992b8b 100644
(file)
--- a/
test/py/conftest.py
+++ b/
test/py/conftest.py
@@
-117,8
+117,8
@@
def pytest_configure(config):
mkdir_p(persistent_data_dir)
gdbserver = config.getoption('gdbserver')
- if gdbserver and
board_type != 'sandbox'
:
- raise Exception('--gdbserver only supported with sandbox')
+ if gdbserver and
not board_type.startswith('sandbox')
:
+ raise Exception('--gdbserver only supported with sandbox
targets
')
import multiplexed_log
log = multiplexed_log.Logfile(result_dir + '/test-log.html')